pac1934 2.2.0
pac1934


Pac1934 Click

Pac1934 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

  • Author : MikroE Team
  • Date : jan 2020.
  • Type : I2C type

Software Support

Example Description

This application measures the voltage.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Pac1934

Example Key Functions

Application Init

Initalizes device, enables the device and makes an initial log.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
PAC1934_MAP_MIKROBUS( cfg, MIKROBUS_1 );
pac1934_init( &pac1934, &cfg );
}
#define PAC1934_MAP_MIKROBUS(cfg, mikrobus)
Definition pac1934.h:66
void application_init(void)
Definition main.c:33

Application Task

This is an example that shows the most important functions that PAC1934 Click has, it mesures voltage, current, power and energy.

void application_task ( void )
{
float read_value;
pac1934_dev_reset( &pac1934 );
Delay_ms ( 100 );
read_value = pac1934_measure_voltage( &pac1934, 1 );
log_printf( &logger, "Voltage : %.2f V\r\n", read_value );
read_value = pac1934_measure_current( &pac1934, 1 );
log_printf( &logger, "Amperage : %.2f mA\r\n", read_value );
read_value = pac1934_measure_power( &pac1934, 1 );
log_printf( &logger, "Power : %.2f W\r\n", read_value );
read_value = pac1934_measure_energy( &pac1934, 1, 8 );
log_printf( &logger, "Energy : %.2f J \r\n", read_value );
log_printf( &logger, "--------------------- \r\n" );
Delay_ms ( 1000 );
}
#define PAC1934_CHANNEL_DIS
Definition pac1934.h:181
#define PAC1934_CHANNEL_DIS_ALL_CHA
Definition pac1934.h:182
#define PAC1934_CTRL_SAMPLE_RATE_8
Definition pac1934.h:103
#define PAC1934_CTRL_REG
Definition pac1934.h:101
#define PAC1934_CTRL_SINGLE_SHOT_MODE
Definition pac1934.h:107
float pac1934_measure_voltage(pac1934_t *ctx, uint8_t channel)
Measure Voltage function.
float pac1934_measure_current(pac1934_t *ctx, uint8_t channel)
Measure Current function.
float pac1934_measure_energy(pac1934_t *ctx, uint8_t chann, uint16_t samp_rate)
Measure Energy function.
float pac1934_measure_power(pac1934_t *ctx, uint8_t channel)
Measure Power function.
void pac1934_dev_reset(pac1934_t *ctx)
Reset device function.
#define PAC1934_REFRESH_CMD
Definition pac1934.h:94
void application_task(void)
Definition main.c:58

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.